chore(release): version packages (next)#19
Merged
Conversation
0f024bb to
db7737d
Compare
db7737d to
20d0d2b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
mainis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonmain.Releases
@matchalatte/ssp-ui@0.0.2-next.5
Patch Changes
Keep row dividers in ListView quiet mode. (#20)
Quiet mode previously stripped the
border-block-endfrom every item, leaving the list visually flat. S2 ListView keeps the dividers in quiet mode and only drops the trailing border on the last row (since there's no outer container border to clip it against). Switch the selector to:not(:has(~ [data-spectrum-list-view-row]))so only the final row's divider is removed.SelectBox spacing and layout refinements. (#21)
--background-layer-2-colortoken (drops the legacy--layer-2-background-colorfallback).spacing-300tospacing-400; the illustration→label gap moves fromrow-gapto an explicitmin-content var(--spacing-100) min-contentgrid track so the gap is a real layout row (easier to override per-instance via the grid template).spacing-200→spacing-300,spacing-400→spacing-500,spacing-300→spacing-400); illustration/text gap moves fromcolumn-gapto a fixed 10 px grid track, description/label gap tovar(--spacing-50).--select-box-max-widthso consumers can clamp the card width without overridingmax-widthdirectly.Add TableView component aligned with React-Spectrum S2. (#18)
<TableView.Root>/Header/Body/Column/Row/Cellregister themselves on mount. No data-passed-as-props alternative — columns and rows are declared as children.none/single/multiple) with controlled / uncontrolled lock-in. Once a consumer supplies a definedselectedKeys/sortDescriptor/hiddenColumns/columnFilters, the component stays controlled for its lifetime.TableKeyboardDelegate: row mode, cell mode (ArrowRight to enter, ArrowLeft / Esc to exit), and column-header mode (ArrowDown into cells, Enter / Space toggles sort). Page Up / Down, Home / End, and typeahead all follow RAC semantics.filterType: text (contains), number (between), enum (in). Filter state lives next to the rest of the controlled props.<a>::afterover the rowheader cell, so cmd/middle/right-click context-menu and SvelteKit client-side nav all flow through a real anchor.linkBehavior='override'semantics — plain click on a linked row does not toggle selection.loading,loadingMore, customrenderEmptyStatesnippet) and infinite scroll viaonLoadMorewith a 50 px scroll threshold.role='grid').<TableView.Root>to match S2'scellFocus(2 px focus-ring inset −2, 6 px corner radius); row leading-edge accent matches S2 TableView's--rowFocusIndicatorColorbar.